home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000452_news@columbia.edu_Fri Dec 16 15:59:32 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA11125
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 16 Dec 1994 10:59:35 -0500
  3. Received: by apakabar.cc.columbia.edu id AA16841
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 16 Dec 1994 10:59:34 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Displaying accented characters
  9. Date: 16 Dec 1994 15:59:32 GMT
  10. Organization: Columbia University
  11. Lines: 40
  12. Distribution: world
  13. Message-Id: <3csdh4$ge5@apakabar.cc.columbia.edu>
  14. References: <KSHAW.94Dec15092623@jobe.shell.portal.com>
  15. Nntp-Posting-Host: watsun.cc.columbia.edu
  16. Cc: 
  17.  
  18. In article <KSHAW.94Dec15092623@jobe.shell.portal.com>,
  19. kendall thomason shaw <kshaw@jobe.shell.portal.com> wrote:
  20. >
  21. >Hi, I get mail from a listserv group which contains accented
  22. >characters (irish)...
  23. >
  24. You do?  I though LISTSERV was strictly 7-bit.  Maybe you have a mail
  25. agent that encodes and decodes 8-bit characters?
  26.  
  27. >...and I see in emacs there are functions
  28. >standard-european-display, and iso-accent-mode. I've tried issuing set
  29. >transfer character-set latin1...
  30. >
  31. That's for file transfer, not terminal emulation.  Please read the manual
  32. (info below).
  33.  
  34. >...but this does not change anything, I
  35. >still get escaped octal codes or whatever, e.g. \353. I'll read more,
  36. >but if someone can point me in the right direction I'd be grateful.
  37. >
  38. In MS-DOS Kermit (3.00 or later):
  39.  
  40.   SET PARITY NONE
  41.   SET TERMINAL BYTESIZE 8
  42.   SET TERMINAL CHARACTER-SET NONE
  43.  
  44. In EMACS 19.xx (not 18.xx or earlier):
  45.  
  46. (require 'disp-table)
  47. (standard-display-8bit 160 255)
  48. (load "iso-syntax")
  49. (load "iso-insert")
  50. (set-input-mode (car (current-input-mode))
  51.         (nth 1 (current-input-mode))
  52.         0)
  53.  
  54.  
  55. This assumes that the message really contains Latin-1 characters.
  56.  
  57. - Frank